home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-10-17 | 612 b | 32 lines | [TEXT/MPS ] |
- // AEThreads.h
- //
- // Copyright © 1993-94 Steve Sisak
- //
- // License is granted to use, modify, make derivative works, and
- // duplicate this code at will, so long as this notice remains intact.
- //
-
- #ifndef __AETHREADS__
- #define __AETHREADS__
- #pragma once
-
- #ifndef __APPLEEVENTS__
- #include <AppleEvents.h>
- #endif
- #ifndef __THREADS__
- #include <Threads.h>
- #endif
-
-
- pascal OSErr AEInstallThreadedEventHandler(
- AEEventClass theAEEventClass,
- AEEventID theAEEventID,
- AEEventHandlerUPP proc,
- long handlerRefcon,
- ThreadOptions options,
- Size stacksize);
-
-
-
-
- #endif // __AETHREADS__